Search Engine Query Language

The text search engine allows queries to be formed from arbitrary boolean expressions containing the keywords AND, OR, and NOT, and optionally grouped with parentheses. For example:

Personal Paint
finds documents containing 'Personal' or 'Paint'

Personal or Paint
same as above

Personal and Paint
finds documents containing both 'Personal' and 'Paint'

Personal not Paint
finds documents containing 'Personal' but not 'Paint'

(Personal not Suite) and Paint
finds documents containing 'Personal', but not 'Suite', and 'Paint'

anim*
finds documents containing words starting with 'anim'